home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / debian_DSA-086.nasl < prev    next >
Text File  |  2005-03-31  |  3KB  |  69 lines

  1. # This script was automatically generated from the dsa-086
  2. # Debian Security Advisory
  3. # It is released under the Nessus Script Licence.
  4. # Advisory is copyright 1997-2004 Software in the Public Interest, Inc.
  5. # See http://www.debian.org/license
  6. # DSA2nasl Convertor is copyright 2004 Michel Arboi
  7.  
  8. if (! defined_func('bn_random')) exit(0);
  9.  
  10. desc = '
  11. We have received reports that the "SSH CRC-32 compensation attack
  12. detector vulnerability" is being actively exploited. This is the same
  13. integer type error previously corrected for OpenSSH in DSA-027-1.
  14. OpenSSH (the Debian ssh package) was fixed at that time, but
  15. ssh-nonfree and ssh-socks were not.
  16. Though packages in the non-free section of the archive are not
  17. officially supported by the Debian project, we are taking the unusual
  18. step of releasing updated ssh-nonfree/ssh-socks packages for those
  19. users who have not yet migrated to OpenSSH. However, we do recommend
  20. that our users migrate to the regularly supported, DFSG-free "ssh"
  21. package as soon as possible. ssh 1.2.3-9.3 is the OpenSSH package
  22. available in Debian 2.2r4.
  23. The fixed ssh-nonfree/ssh-socks packages are available in version
  24. 1.2.27-6.2 for use with Debian 2.2 (potato) and version 1.2.27-8 for
  25. use with the Debian unstable/testing distribution. Note that the new
  26. ssh-nonfree/ssh-socks packages remove the setuid bit from the ssh
  27. binary, disabling rhosts-rsa authentication. If you need this
  28. functionality, run
  29. chmod u+s /usr/bin/ssh1
  30. after installing the new package.
  31.  
  32.  
  33. Solution : http://www.debian.org/security/2001/dsa-086
  34. Risk factor : High';
  35.  
  36. if (description) {
  37.  script_id(14923);
  38.  script_version("$Revision: 1.4 $");
  39.  script_xref(name: "DSA", value: "086");
  40.  script_cve_id("CVE-2001-0361");
  41.  
  42.  script_description(english: desc);
  43.  script_copyright(english: "This script is (C) 2004 Michel Arboi");
  44.  script_name(english: "[DSA086] DSA-086-1 ssh-nonfree");
  45.  script_category(ACT_GATHER_INFO);
  46.  script_family(english: "Debian Local Security Checks");
  47.  script_dependencies("ssh_get_info.nasl");
  48.  script_require_keys("Host/Debian/dpkg-l");
  49.  script_summary(english: "DSA-086-1 ssh-nonfree");
  50.  exit(0);
  51. }
  52.  
  53. include("debian_package.inc");
  54.  
  55. w = 0;
  56. if (deb_check(prefix: 'ssh-askpass-nonfree', release: '2.2', reference: '1.2.27-6.2')) {
  57.  w ++;
  58.  if (report_verbosity > 0) desc = strcat(desc, '\nThe package ssh-askpass-nonfree is vulnerable in Debian 2.2.\nUpgrade to ssh-askpass-nonfree_1.2.27-6.2\n');
  59. }
  60. if (deb_check(prefix: 'ssh-nonfree', release: '2.2', reference: '1.2.27-6.2')) {
  61.  w ++;
  62.  if (report_verbosity > 0) desc = strcat(desc, '\nThe package ssh-nonfree is vulnerable in Debian 2.2.\nUpgrade to ssh-nonfree_1.2.27-6.2\n');
  63. }
  64. if (deb_check(prefix: 'ssh-socks', release: '2.2', reference: '1.2.27-6.2')) {
  65.  w ++;
  66.  if (report_verbosity > 0) desc = strcat(desc, '\nThe package ssh-socks is vulnerable in Debian 2.2.\nUpgrade to ssh-socks_1.2.27-6.2\n');
  67. }
  68. if (w) { security_hole(port: 0, data: desc); }
  69.